Jump to content

ttamturk

uniGUI Subscriber
  • Posts

    234
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by ttamturk

  1. Hi,

     

    I searched forum but can't find anything, if there is sorry for a repeat. When uploading takes too much time users thought it's locked-crashed etc. and refresh page and try again most of the time.

     

    It will be very good to show a progress while uploading.

     

    Best

    • Upvote 1
  2. Hi Everyone,

     

     

    Today, i upgrade from Delphi2007 to XE7 (i know it's long jump :)) and convert my projects. There is no problem when using XE7 32-bit. Then i decided to try to build my project to 64 bit. I installed a new Apache Httpd server 64 bit to my local machine make a new dll to test how it's working.

     

    When i set my applications target to 64-bit and run project as an EXE there is no problem at all.

     

    Then i try to use a 64 bit dll on apache server. Login form opens but when i try to enter my user name (and locate a user background), it get's access violation.

     

    So, here is my problem. I can't debug what is wrong here because it gives this error only when using DLL+APACHE.

     

    Is there any one has any idea how to locate these kind of errors with XE7 (i am pratically new to this IDE) ?

     

    Best,

     

    PS: Please don't say put ShowMessages everywhere. that's not what i am looking for :)

  3. For "TuniDBLookupComboBox" remoteQuery does not make sense. It is already attached to a table which provides data for combobox list.

     

    True, but how will you gonna select your for example Company from a list of 500 companies? This is why it's needed to filter that list source by typing.

  4. Hi,

     

    I added these properties to my custom control;

     

        property CheckChangeDelay;
        property ClearButton;
        property RemoteQuery;
        property RemoteQueryDelay;
        property Style;

        property OnChange;
        property OnRemoteQuery;

     

     

    Everything is fine except style, i want to use lookupcombobox's text area like normal combobox with text editing support to do RemoteQuery, but how should i do that or how should i know how to do that? Is there any documentation about uniGUI controls properties or events etc. ? This is like blind diving :)

     

    Best

  5. Hi,

     

    I try to make a menu at the bottom of the page and i can do it with a css but i have an issue here.

     

    I set my css class (Shortcuts) to a unipanel afterrender but there is it's element style which takes objects position from delphi form. Css code;

     

    element.style {
        height: 41px;
        left: 46px;
        top: 440px;
        width: 116px;
    }
    .Shortcuts {
        bottom: 0 !important;
        left: 30px !important;
        padding: 3px 3px 0;
        position: fixed !important;
        z-index: 9999;
    }

     

     

    this is the result after i set my custom css. as you see there is a top property at element.style and it makes my css styles bottom property useless. How can i clear that property?

     

    Best regards

     

  6. Well, in all other web frameworks you can't do anything useful without "lots of extra coding". uniGUI hides lots of these details for you and internally implements the code.

    If you try to code directly in Ext JS or similar almost all of such details must be coded manually.

     

    Of course, every framework, component packages etc. has much more detail after front-end but some functions/methods or properties are used by developers all the time like this issue ""Column Width". These common interfaces are valuable for a component library such as uniGUI.

     

    I am not try to offend or discredit here, i am try to make this framework better.

     

    best

  7. Hi,

    Sorry if I misunderstood the question..

     

    There is also an event RowSelect

     

    Sorry temporarily, I can not attach a file...

     

    (UniDBGrid1 -> ClientEvents -> ExtEvents -> [Ext.selection.RowModel [rowModel]]) rowModel.select

    function rowModel.select(sender, record, index, eOpts)
    {
     
    }

    Best regards.

     

    Thanks, but this is not a Question. It's a feature request. I know there is a client-side event and i can easily simulate this behavior with ajax callback events but if there is an event on control, we don't need to do extra coding. Like, we use to write a jscript code to use ClearButton, but now it's a property.

     

    Best

×
×
  • Create New...