Jump to content

Recommended Posts

Posted

Merhaba,

 

 

ExtJS.RES dosyasından örneğin gridin hangi eventları olduğunu listelemek istiyorum. 

 

UniDBGrid1.JSControl.JSClassName metodunu buldum ama ondan da sonuç  "Ext.Component' olarak çıkıyor.

 

Sanıyorum resource dosyasındaki karşılığı Ext.view.Table gibi birşey.

 

Yani objelerin resource dosyasında tanımlı olan adlarına nereden ulaşabilirim ?

 

Teşekkürler.

Posted

I am reading ExtJS.res file. How can I get used definition name of each TuniFormControls in res file for find to event names of controls. 

 

 

 

post-5660-0-02357700-1511270657.png

  • Administrators
Posted

procedure TMainForm.UniButton2Click(Sender: TObject);
var
J : TJSObjectList;
I : Integer;
S : string;
begin
J := (UniChart1 as IUniJSObjects).JSObjects;
S := J.DefaultJSClassName + ':';
for I := 0 to J.Count - 1 do
S := S + ', ' + J.ValueFromIndex[I];
ShowMessage(S);
end;

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...