Atozed Forums

Full Version: IWJQGrid question (not JQDBGrid)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All,

How do I add data to a cell in a JQGrid ?

And if I have more rows than one, how do I add different values to cells in the rows ?

Do anyone have any examples of how to ?

Regards
Soren
Right, got it.

using cells[y,x] it is working.

iwjqgrid1.cells[row,col] := 'ABC'; will do it.
Hello all,

is it possible to select and highlight a row of the IWjQGrid based on the RowID?
I use Delphi 10.4 and IntraWeb 15.2.46

Regards
Michael
Inside an Async event handler you can do this:

var
js: string;
begin
js := '$("' + myGrid.jQSelectorID + '").jqGrid("setSelection",' + RowId + ',false);}';
WebApplication.CallBackResponse.AddJavaScriptToExecuteAsCDATA(js);
end;

It will work as long as RowId is valid in the grid context.

Function GetCurrentRowId() of the IWjQDBGrid returns the RowId of the current record of the underlying dataset (if DataSet is active)

We are including a method to do exactly that in the next release.

Cheers
(12-14-2021, 06:04 AM)Alexandre Machado Wrote: [ -> ]Inside an Async event handler you can do this:

var
  js: string;
begin
  js := '$("' + myGrid.jQSelectorID + '").jqGrid("setSelection",' + RowId + ',false);}';
  WebApplication.CallBackResponse.AddJavaScriptToExecuteAsCDATA(js);
end;

It will work as long as RowId is valid in the grid context.

Function GetCurrentRowId() of the IWjQDBGrid returns the RowId of the current record of the underlying dataset (if DataSet is active)

We are including a method to do exactly that in the next release.

Cheers

Thank you.
Then I'm already looking forward to the next release.  Big Grin