Jump to content

SayeyeZohor

uniGUI Subscriber
  • Posts

    215
  • Joined

  • Last visited

Everything posted by SayeyeZohor

  1. function cellclick(sender, td, cellIndex, record, tr, rowIndex, e, eOpts) { window.open("https://www.google.com/", "_blank"); }
  2. yessss but i use that when cellclick in unidbgrid if column = "field1" @Sherzod
  3. 2- please convert function js to pascal button click code tnx
  4. function click(sender, e, eOpts) { window.open("https://www.digikala.com/", "_blank"); } 1- check this site 2- convert function js to pascal button click code tnx
  5. how to add in button click convert ? function click(sender, e, eOpts) { window.open("https://www.google.com", "_blank"); }
  6. hi please check sample source and fix that ... thanx http://forums.unigui.com/applications/core/interface/file/attachment.php?id=8306 I'm desperate
  7. please check sample case and repair that pleaseeeeeee... Sample.rar this code UniSession.AddJS('window.open(''https://support.wwf.org.uk'''_blank'');' ); // to open a new window/tab corect and use my program but open page in popup blocker how to open url without popup blocker in browser @Sherzod@Farshad Mohajeri Topics that look like this and have not responded: 1- 2- 3-
  8. any ... example (border, padding, line-height , ...)
  9. how to solve that error in delphi compiler? @Sherzod
  10. tnx how to add css to unimemo or other component? @Sherzod
  11. hello, i waiting for ... tnx
  12. tnx 1- how to change or add CSS For uniHtmlMemo ?  border, ......
  13. yes i have'n found that ... please refer me tnx @Sherzod 1- how to change or add CSS For uniHtmlMemo ?  2- how to change Font For uniHtmlMemo ?
  14. hi 1- how to change or add CSS For uniHtmlMemo ? 2- how to change Font For uniHtmlMemo ? @Sherzod how add above css ?
  15. hi, i want to Convert all of numbers in html to persian number sample: 2: '۲' and use this script in onload webpage <script> $(document).ready(function () { ConvertNumberToPersion(); }); function ConvertNumberToPersion() { persian = { 0: '۰', 1: '۱', 2: '۲', 3: '۳', 4: '۴', 5: '۵', 6: '۶', 7: '۷', 8: '۸', 9: '۹' }; function traverse(el) { if (el.nodeType == 3) { var list = el.data.match(/[0-9]/g); if (list != null && list.length != 0) { for (var i = 0; i < list.length; i++) el.data = el.data.replace(list[i], persian[list[i]]); } } for (var i = 0; i < el.childNodes.length; i++) { traverse(el.childNodes[i]); } } traverse(document.body); } </script> @Sherzod
  16. hi how to add javascript code in onload page with unigui? <script> $(document).ready(function () { ConvertNumberToPersion(); }); function ConvertNumberToPersion() { persian = { 0: '۰', 1: '۱', 2: '۲', 3: '۳', 4: '۴', 5: '۵', 6: '۶', 7: '۷', 8: '۸', 9: '۹' }; function traverse(el) { if (el.nodeType == 3) { var list = el.data.match(/[0-9]/g); if (list != null && list.length != 0) { for (var i = 0; i < list.length; i++) el.data = el.data.replace(list[i], persian[list[i]]); } } for (var i = 0; i < el.childNodes.length; i++) { traverse(el.childNodes[i]); } } traverse(document.body); } </script>
  17. Greetings and Regards What did it do to call and use JavaScript functions in unigui? There are sample usage functions in the Html file @Sherzod @Farshad Mohajeri html.zip
  18. Can you teach these tutorials to other developers as well?
  19. hi yes i want whether it is active or not on expand or collapse run a showmessage for me ...
×
×
  • Create New...