Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12121
  • Joined

  • Last visited

  • Days Won

    808

Everything posted by Farshad Mohajeri

  1. Buttons are drawn using CSS theme. You need to play with CSS theme, but this will affect all buttons.
  2. Yes, you must add this: if WebMode then begin end;
  3. Folder name which is same as UniApplication.SessionId contains all cache files for that session. Where do you set this? You must set this in Form.OnCreate event.
  4. Why do you need client side coloring?
  5. When you write a custom renderer you need to handle all formatting tasks in your renderer method, because your renderer replaces the uniGUI default renderer.
  6. Yes, it is a problem. Actually, we must remove Animate parameter in future. It confers with the way Modal forms work in uniGUI.
  7. Aldıınız host VPS değilse olmaz. Remote Desktop bağlantısı var mı? Doğrudan bağlanıp IIS ile ilgli ayarları yapacaksınız.
  8. Nasıl bir host bu? Shared host ise olmaz.
  9. You should not loop inside the renderer function. Renderer function is called per each cell. You don't need using a loop there.
  10. You can use all types of databases supported in Delphi.
  11. For each column you need to write a proper renderer function in JS. function OnReconfigure(sender, store, colModel) { colModel.getColumnById(1).renderer=function(val, metadata, rec, row, col, store) { if (row==0) metadata.attr='style="background-color:green;"'; return val; }; colModel.getColumnById(2).renderer=function(val, metadata, rec, row, col, store) { metadata.attr='style="background-color:green;"'; return val; }; }
  12. There two ways. Using cookies and HTML5 storage.
  13. Try this for DBGrid.ExtEvents onReconfigure JS Event: function OnReconfigure(sender, store, colModel) { colModel.getColumnById(1).renderer=function(val) { return '<span style="color:green;">' + val + '</span>'; }; }
  14. Program desktop'da çalışırken localhost:8077'den girebiliyor olmanız lazım. Olmazsa 127.0.0.1:8077 den deneyin. //{$define UNIGUI_VCL} // Comment out this line to turn this project into an ISAPI module' Üstteki satırı kapattığınıza DLL üretir, açtığınızda EXE. Yalnız XE2'de her değiştirdiğinizde projeyi kapatıp açmanız lazım. DLL dosyası tabiki localhost'dan çalışmaz . Delphi DLL'i çalıştırmaz. Önce IIS'e aktarmanız lazım. Sonra http:/localhost/sanalklasor/dlldsoyam.dll şekline çalıştırmanız lazım. IIS'e aktarmayı dokümanlarda anlatmışız. Oraya bakın tekrar. IIS'a DLL kurulumu hakkındaki dokümanı okuyun önce. IIS'e aktarmak çok kolay bir iş değil. Önce sanal bir yol/klasör açmanız lazım. Dokümana bakın önce. Aşama aşama uygularsanız olacak.
  15. Ext JS Setup installs everything in 3.4.0 folder. You can create a ZIP out of it.
  16. Türk değilim ama Türkçe biliyorum. Zamanında ODTÜ'de okumuştum. Şimdi siz DLL dosayısını ne şekilde sunucuya attığınızı detaylı olarak yazın ben eksik yaptıklarınızı yazayım.
  17. Picture is saved in Cache folder. UniSpeedButton1.ExtControl
  18. In web mode Icon is not kept in memory. It is freed after a web icon is created. That's why you can't get it.
  19. UniForm->Icon Yes, you will assign the proper CSS info.
  20. Sometimes browser keeps the old favicon in cache.
  21. ServerModule->Favicon
  22. Hi, 1. What do you mean by "getting" it? 2. You can use Ext property iconCls http://docs.sencha.com/ext-js/3-4/#!/api/Ext.Button-cfg-iconCls
  23. Zip file will not make necessary registry settings required for unigui app to find location of ext files.
  24. Mine is not the same. Please note that first line is commented.
×
×
  • Create New...