Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12121
  • Joined

  • Last visited

  • Days Won

    807

Everything posted by Farshad Mohajeri

  1. In current version you can do it by directly assigning html links to Grid cells. <img src="http://..." /> In future releases I will try to add support for images that are directly loaded from DataSet.
  2. We don't have an indicator in web mode. Do you mean the left most thin column?
  3. hi, In web mode Forms can not be child controls. It is not supported. Use Frames or Panels instead.
  4. Need a test case for this one.
  5. In 0.86 it can be resolved like this: function OnAfterrender(sender) { var aa=document.getElementById(sender.id+'-tb-prev'); var bb=document.getElementById(sender.id+'-tb-next'); if (aa) aa.style.visibility="hidden"; if (bb) bb.style.visibility="hidden"; } Logged #1073 Can you provide a Test case for this?
  6. Items.FontData = {0100000000} It stores Font data for TreeView
  7. Are you using latest build of uniGUI ? Can you send a test case?
  8. In Paged mode there is a paging navigator under Grid which allows you to navigate across pages. Page size should be around 25-40 rows and you will navigate using paging toolbar located on bottom of UniDBGrid. If you disable paged mode then all records are displayed but this is not recommended if your dataset contains hunderds of records, as lots of rows will take a long time to load and very slow to browse.
  9. Normally you can't adjust number of pages. You only set the PageSize from WebOptions and number of pages are calculated automatically. Number of pages = RecordCount div PageSize.
  10. Unicode string warnings can be skipped. They will be fixed in non-beta release.
  11. From same link you downloaded 0.85
  12. Maybe, but first builds of 0.86 may not be stable for production use.
  13. I will add a custom property for this. A pointer to hold user data. Logged #1067 I don't know. You can explore Ext JS docs for it and if there is a way for it I will try to implement it.
  14. You can set it for each cell but not for the whole row.
  15. newest buiild is: 0.85.0.874
  16. Good to hear. Btw, I see that you're using an older versiion of uniGUI. 0.85.0 is the current version and recommended for all new developments.
  17. I found the problem: file ext-unigui-1.2.3-min.js is missing. Probably you're using ext-3.3.0 folder from an older uniGUI distribution. Please copy the ext-3.3.0 folder from correct uniGUI version.
  18. I assume you have the following folder structure: c:\myapp\uniguiapp.dll <--- your application c:\myapp\ext-3.3.0 c:\myapp\ext-3.3.0\ext-all.js c:\myapp\ext-3.3.0\ext-unigui-1.2.5-min.js . . . In this case: ExtRoot -> ext-x.y.z\ ServerRoot -> blank
  19. Is your app accessible from a global IP? If yes post the link so I can see what's the problem.
  20. Is your Grid in paged mode? If yes how many pages are there?
  21. What is the ServerRoot parameter?
  22. Actually not. "ext-3.3.0" is a signature used to detect ext js files. It is translated internally and will point to whatever path you assigned in ExtRoot.
  23. Then set ExtRoot -> d:\inetpub\wwwroot\extjs\
  24. is it d:\inetpub\wwwroot\extjs or d:\inetpub\wwwroot\extjs\ext-3.3.0
  25. Well, version numbering was always a mystery to me. The amount of new features added in each uniGUI sub release is comparable to features many companies add in a major release. Considering all new features in 0.86 I may directly jump to 0.90.
×
×
  • Create New...