Jump to content

Jaume

Members
  • Posts

    25
  • Joined

  • Last visited

  • Days Won

    1

Jaume last won the day on July 3 2013

Jaume had the most liked content!

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

783 profile views

Jaume's Achievements

Newbie

Newbie (1/4)

3

Reputation

  1. Thank you for the answer. I need to close Forms because i want to simulate a desktop as the forum samples. So when I close one application of the desktop i want to free all possible Forms that i won't use anymore. Jaume
  2. Hi, is there any way to check which Application forms are created to free them? The problem is that when i check this: if Form1 <> nil then Form1.close; The Form1 is always different of nil even if it's not created and then as soon as it makes Form1.close it creates Form1 to be able to close it. Thank you.
  3. My temporary solution for this last problem is this one: on the UniEvents beforeInit() of the Form 3: function window.beforeInit(sender) { sender.constrain = true; sender.constrainTo = Form2.form.uform.getEl(); sender.renderTo = Form2.form.uform.getEl(); } This makes the Form3 to be MDIChild of the Form 2. Other resize problems still happen, but at least this makes the MDIChild inside the MDIForm all the time, even after resize the MDIForm. With UNIGui MDIChild if you risize the MDIForm, sometimes MDIChild can be outside of MDIForm.
  4. I think something between 700$-1000$ it's correct. Anyway, i think UniGui has a lot of potential right now for the Delphi comunity. Developing real HTML/javascript Extjs and future ExtTouch from native pascal it's amazing. It breaks the actual walls of Embarcadero as they are not helping us much to have new good technologies. Honestly, i think Embarcadero should help Unigui. But I think this project must become more professional (Documentation,support, more developers to speedup bug fixing). You have a hungry comunity that could help a litle bit more to your project in many ways (economically/technical/support/etc...) but needs to be organized somehow.
  5. Another issue. If you have this Form creation: Form1 (fsNormal) -> creates Form2 (MDIForm) -> creates Form3 (MDIChild). Then Form3 is created without being inside of Form2, it's not a real child of his creator. I think that if MDIForm/MDIChild it's possible then it should be working as real form -> child. Thank you
  6. Also, if you resize the MDIForm the maximized MDIChild remains unresized. So you get a small MDIForm with big MDIChild that remains outside of his parent. Don't know if this must be considered a bug and posted in the bug forum with example?
  7. Hi, In the demo "uniGUI\Demos\MDI Forms" if you put a panel or ToolBar with align onTop on the MainForm, the two MDIChild forms are created on top of the panel, and it is not visible. This not happens on pure Delphi VCL. If you have a panel on a MDIFOrm all the MDIChilds are created on the remaining space. Is there in trick to achive this behaviour? I've tried ReCalculateAligns but doesn't work. Thank you.
  8. Finally a trick did the job. I would like to ask to Unigui developers why the first version did not worked, since i thought sender.plugins = [ ...] makes the plugin render inside the sender. Another thing i don't understand is why UniEvent AfterCreate is never triggered. If i write a console.log('Aftercreate') , the text is never shown. So i assume it's never triggered. So to make it work, i had to add to afterRender of the panel direct Extjs code, to add the Ribbon to the panel. Also i would like to ask to Unigui developers if this kind of code is recomendable, clean or if there is another way to do it. I assume that coding this Extjs code to a Unigui Component should be better, but for now i don't have the time to do Unigui components (also i assume that will have to guess a lot of things because there is not much documentation). ribbon2.rar
  9. Finally i have the plugin working: I attach a sample project if you want to try. There are 2 CustomeFiles, and all the code is inside the ClientEvent beforeinit of the UniPanel1. I have another issue now. I can't make the Ribbon menu render inside the Form. So if the Ribbon is rendered, the form isn't. It seems that the renderTo : Ext.getBody() makes the Ribbon to be outside the Form. But i can't make renderTo: MainForm or something like this, because it seems the MainForm is not created yet. Can you help me to make the Ribbon menu rendered inside the Form as the UniPanel1 is? Thank you. Ribbon.rar
  10. Anybody has a demo/example for this Ribbon Menu? I've found this Ribbon ExtJs plugin: http://www.sencha.com/forum/showthread.php?132811-Another-Ribbon-Style But i can't achieve to make it work in the a sample project. Can anybody help us? I know there is a Ribbon example in http://forums.unigui.com/index.php?/topic/3372-ribbons-demo/?hl=ribbon but i would like a example to make ExtJs plugins like this work in UniGui. Thank you.
  11. Jaume

    Free Form creation

    As a response to my old post, what should it be the best way to have a form like Delphi style? I mean, having a form created but not showed inside another form? As i do it right now, it's creating it, showing it and hidding it. This is the only way i have to avoid the "warning: Form must be shown after it is created". This makes all slower as i tested. If i don't show/hide the form, creating and showing the first form is like 2-3 seconds faster in my case. But for example in this case: I have a form where customers records are in a grid (Form_Customers) -> Then i have a search form to filter the customers inside Form_Customers. This search form has all the functions to generate the SQL code for the first form, so it must be created as the Form_Customers is created. This is the way i do it on Delphi, but I'm opened to other ways to do the same job but more efficient for UniGui. The inconvinient is that right now we don't have the documentation to understand why is slower, or what are the best practices for the Forms creations. That's why i need your help please.
  12. Anybody know something about it? Do I move this post to the Bug Reports / Feature Request? Thank you
  13. Hi, I have a problem with the onSetText Event of my datasets. When you have a UniDBEdit and you change its text, the onSetText Event of the linked dataset field is not triggered. I've tested it in VCL Delphi and it worked, but in UNIGUI the event is never triggered with the visual UniDB components. As it seems, the event is triggered when TField.text is changed, so maybe the UniDBEdit doesn't modify the TField.text of the linked field as the DBEdit does. Can you verify if it's a bug or you have planned to work as it is? Thank you very much. Jaume
  14. Jaume

    AlClient Align

    Ok, thank you. It works.
  15. Jaume

    AlClient Align

    Hi, I have a panel where i place some diferent frames depending of a button click. When i assign the frame align to "alclient", it doesn't do it, it's placed but not maximized to the size of the panel. This is the code i run on a click button of my Form form 1 of the frames: if frame1 = nil then begin frame1:= tframe1.create(self); frame1.Parent := self.panel1; frame1.Align := alclient; frame1.Visible := true; end; if frame1 <> nil then begin frame1.init(self.Handle,nil,nil); self.frame1.BringToFront; self.Menu:=self.frame1.Menu; end; frame1 is a private variable of the form and self.panel1 is alclient to this form. Also, as i mentioned in another post, self.Menu:=self.frame1.Menu doesn't work. You can't change the menu of a Form based on the active Frame as you can do in Delphi. Thank you very much
×
×
  • Create New...