Jump to content

patmap

Members
  • Posts

    263
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by patmap

  1. Hi, Mr. Farshad I'm glad for adding new PopupMenu component on UniGUI. I think if these features are added to the program will be very useful. Thank you. 1) Checked Item (Popupmenu.Items[x].AutoCheck := true) 2) Radio Item 3) Group Index 4) RTL Property 5) Popup property for other components for auto popup 6) HideOnClick Property (used in Submenu when click on submenu that have childs, menu must be not closed) 7) Icon Property Because everything was related together, i put in one post, Like this image: Regards
  2. Hi Semper, Good Job. I think It is better to classify all the possibilities and make a thread and put all into new topic. Thanks Best Regards
  3. WOW, This is great. Thank you Mr. Farshad. Regards
  4. Hi, I Change ExtJS group-header-grid.js Example for testing. There is no limit on the number of columns heaer level, and Each column can be separated into multiple columns header. Example Grid with 3 level Header and Store in Here Regards
  5. patmap

    Mask FieldMoney

    Hi, Changes in MoneyField.js initEvents : function() { if(this.isMoney == true) { var input = this.inputEl; input.on('keypress', this._onKeypress, this); input.on('keydown', this._onKeydown, this); input.on('blur', this._onBlur, this); input.on('focus', this._onFocus, this); } this.callParent(); }, Wrong uploded, Try this: XMoneyEdit2.zip
  6. patmap

    Mask FieldMoney

    Hi, Yes you right, I fixed it in FieldMoney.js source. XMoneyEdit.zip Regards
  7. Hi, He started working on supporting Ext.4.1.1a https://groups.google.com/group/extpascal Regards
  8. Hi, I'm not usually the main window, I'm using the page mode( Viewport ), So the user can not close the program unless user want to logout, And, when my application session time out, I will redirect user to login page. regards
  9. Hi, For Restart Application Use UniApplication.Restart(); And For terminating Application use: UniApplication.Terminate(); Copy this code and paste to UniServerModule->ServerMessages->TerminateTemplate <html> <body bgcolor="#dfe8f6"> <p style="text-align:center;color:#0000A0">Application Terminated !</p> <p style="text-align:center;color:#A05050"><a href="http://www.google.com">Go to Google</a></p> </body> </html> Regards
  10. patmap

    Mask FieldMoney

    Hi, See this sample For this sample I use this Moneytext JS source code, if you see any bug say this source owner: http://code.google.com/p/extjs-field-money/ XMoneyEdit.zip Regards
  11. Hi, This is very simple: 1) Make a Inherited class from TUniEdit (Ex: TUniNumberText = Class(TUniEdit) ) 2) Then override Loaded method; 3) Write This line into Loaded Method: ExtEdit.MaskRe := '/[0-9]/i'; Only one line ! Regards
  12. Hi, See this sample code: XFullScreen.zip Regards
  13. Hi, See Full article with sample code: storing-images-in-database-mysql-and-ms-access-example regards
  14. Hi, For each session (a client connected to your application server) have a own main module and created when a new session is created and connected to your application server. But for your application server have a one Server Module. and created when your application server is started and destroy when your application server shutdown. You can use main module for private data and variables in session scope. And you can use variable and public data for sharing between all session in server Module. Regards
  15. Hi, You can download last version of uniGUI from download tab 0.91.0.984
  16. patmap

    Find Record

    Hi, There is No difference between VCL mode and WebMode in server side table locating ! Then you check your code for table events (AfterScroll, BeforeScroll or ... ) or attach a sample project code (if possible with Access database or clientdataset). This is better use [ try Table.DisableControl ] when you must be insert or locate table then [ finally Table.EnableControl ]. Regards
  17. Hi, No, i'm working on new features. Regards
  18. Hi, 1) Change ServerModule.ExtLocale := [your lang]: ( for example: ServerModule.ExtLocale := fa ) 2) Go to [ \uniGUI\ext-4.1.1a\locale\ ] folder and find you lang locale file: ( for example: ext-lang-fa.js ) 3) Add this section in end of file then save and refresh your browser. Ext.define("Ext.locale.fa.grid.feature.Grouping", { // <-- Change [fa] letters to your lang name override: "Ext.grid.feature.Grouping", emptyGroupText: "(None)", // <-- You can change this text groupByText: "Group by this field", // <-- Change this text showGroupsText: "Show in groups" // <-- Change this text }); Regards
  19. Hi, If you want use windowless page or full screen page application must be use ViewPort dont change MainFormDisplayMode You can see ViewPort Demo. Regards
  20. Hi, I work on align of control on UniXPanel; If you search on google: ExtJS Fit to parent. you can found why this is a problem in ExtJS. but i try to solve it. I fixed this issue and i reupload this later. Thank you regards
  21. Hi, This components tested only on XE3. Try with: Remove any "System." or "VCL." from prefix of all uses. Regards
  22. Hi, When you want upload your projects : 1) Delete any exe file. 2) Delete all dcu files. 3) Make sure all dfm and pas files inside your project folder. Regards
×
×
  • Create New...