Hi,
I have one column that uses tinymce editor. There is an issue with loading the editor in Jquery UI dialog for add and edit features.
The editor loads only the first time and it doesn’t load again. I only see text area instead of tinymce editor.
It only happens in Jquery UI dialogÂ
It also happens in your integrations > tinymce-editor demo.
Thanks,
Sri
I’ve updated demo and it is working now.
http://www.phpgrid.org/demo/demos/integrations/tinymce.php
See code here:
http://www.phpgrid.org/demo/demos/integrations/tinymce.phps
Thanks for the fix. It worked.
There is one more issue I am facing with Jquery UI dialog. It also happens in the demo
Issue: In Demo
When I open a row to edit in the Jquery Dialog. It is missing 1 column.
In the Demo, there are 4 columns : ID, Date, Notes, Total, Client.
ID, Date, Notes, Total are editable.
When I select a row and click on edit, I see ID, Date, Notes fields in the dailog box. I am unable to see Total field.
This is happening with textareas. I am not sure if this issue is related to textarea or RTF editors.
There is one more issue I am facing with Jquery UI dialog. It also happens in the demo
Issue: In Demo
When I open a row to edit in the Jquery Dialog. It is missing 1 column.
In the Demo, there are 4 columns : ID, Date, Notes, Total, Client.
ID, Date, Notes, Total are editable.
When I select a row and click on edit, I see ID, Date, Notes fields in the dailog box. I am unable to see Total field.
This is happening with textareas. I am not sure if this issue is related to textarea or RTF editors.
This is because the total column has settings which enable display on add and hide on edit.
$col["show"]["edit"]=false; $col["show"]["add"]=true;
http://www.phpgrid.org/demo/demos/integrations/tinymce.phps
Line 107
Thank you.
Just realized that $col[“formoptions”] = array(“rowpos”=>”3”, “colpos”=>”1”); messed up my dialog view. This was only set for one column. So it did override the placeholder of other column.
Thank you very much for all your help