That’s up there already. RC99.
Type: Posts; User: barrymavin
That’s up there already. RC99.
The grid is readonly and dblClick is used to edit a row. This was causing an issue.
I have corrected this in the next build. So use DblClick on a readonly grid as the delegate and just do this....
The package you uploaded last week used a click delegate. In web. And it worked. I will reinstall it once again and have a look at it when I have a chance. You must have changed something.
Did you read my reply.
The click delegate is being called. Look at your previous code. It worked then,
The data bound columns are available as JavaScript variables. I’ve already explained this....
A few days ago I gave you some code which constructed a filter expression in JavaScript. You need to go read that again.
A filter expression is applied on the server so it cannot reference...
In your delegate just reference custname (or other fields that you have bound to the grid) as I explained earlier.
Inspect these variables in the JavaScript console as suggested.
You don’t need to do any of that in desktop or web / mobile.
When you position on a row in a grid, the name of the controlsource e.g custname can be referenced as a JavaScript variable.
you...
BTW It would have worked just fine all in one page if you had used the dblclick delegate rather than the click delegate.
Removing the filter will select all records starting at the first.
If you have designed your UI to select records based on clicking on the grid then how else are you wanting to navigate the data....
As I stated in my email to you...
Your code is all wrong. You need to construct a string on the right hand side of the ==. see below.
function pcust_sgrid_changed(lcustid)
{
var lfilter =...
Just set a filter on all of the sections you want updated and then refresh them.
Whats wrong with using "Instant Search".
Can you explain what you mean by all in sync. Are you data binding more than one section to the same data source?
Records in a grid are editable both inline and by a slide in Dialog when you...
Using record numbers like that is desktop bound. It is better to search based on a key if you need to manually relate sections like that. Why don’t you just relate the sections and let the framework...