Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IWJQGrid question (not JQDBGrid)
#1
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
Reply
#2
Right, got it.

using cells[y,x] it is working.

iwjqgrid1.cells[row,col] := 'ABC'; will do it.
Reply
#3
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
Reply
#4
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
Reply
#5
(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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)