Jump to content

Search the Community

Showing results for tags 'change'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 9 results

  1. I use Falcon's TUniFSPopup component to create a menu, but I need to adjust the position of the arrow on that menu but dynamically, that is, when I click on a button that will display this popup I need to change the margin-left property of the class's css .x-ux-callout.cartoon.top:after and .x-ux-callout.cartoon.top:before when I click on the button, so when it closes the pop up it's normal so I don't give problems in other places I use, how can i do this at runtime ? .x-ux-callout.cartoon.top:after { margin-left :92px !important; } .x-ux-callout.cartoon.top:before { margin-left :90px !important; }
  2. Hello, how do I change the background color of a button? The TuniSpeedButton component has the Color option, however, the selected color does not. Thank you.
  3. Good morning, I wonder if I can change the intensity of the shadow, after I open a form in ShowModal or Message. Today the shadow is clear, however like to make it darker. Thank you.
  4. Dear Mrs. I was trying to use TUnicalendarPanel in a project and found the following difficulties: 1) There is no property of type "READONLY" in TUniCalendarEvent that prevents event modifications such as event handling or change of start and end date. 2) You cannot use the TUnicalendarPanel OneventMove event to abort the movement of an event. 3) How to adjust the duration of event "EventResize" with mouse in UniCalendarPanel? 4) How to use the "OnEventResize" event to cancel a resize event? Thank you if you can submit an example addressing these issues. Marcelo Carvalho
  5. In searching the forum I found neither on the internet nor how to change the UniCalendarPanel: 1. Start viewing by day and not by month 2. Being by day, show only the hours I want, example, from 8am until 6pm 3. disable a certain time zone, type 11am not possible to choose 3. Change the time division, this every 30 minutes, put 15 minutes
  6. CAN CHANGE REPORT TITLE RUNTIME? I'm trying this way but not anther! MainForm.UniLineSeries1.Title := 'teste'; Thanks Zanona
  7. Hello I wonder if there is any time in UniCalendarPanel. When opening a day flap, it does from 8:00 AM to 7:00 PM, how do I change the beginning and end of the day with other times? type: beginning 06:00 AM and ending at 10:00 PM Translation: Google translator
  8. How do I change the background color of tunimdbnumberedit when leaving the field? Thanks Zanona
  9. If anyone wants to resize a grids toolbar (the one with next previous... etc) you can do something like: servermodule->customcss Be carefull not to forget !Important because it want work .bigicons{ background-image:url("images/back64.png") !important; width:64px !important; height:64px !important; } grid->ExtEvents->OnResize function OnResize(sender, adjWidth, adjHeight, rawWidth, rawHeight) { var tb=sender.getDockedItems('toolbar[dock="bottom"]');; if(tb){//if has toolbar if (tb.length > 0) tb = tb[0]; tb.height=74;//resize all the toolbar if(tb.items.get(0)){//this is the first item of the toolbar (go to first page) tb.items.get(0).height=64; tb.items.get(0).width=64; //tb.items.get(0).hide(); //you can also hide a button tb.items.get(0).setIconCls('bigicons');//this is the css class witch puts the new icon... } } } I hope this helps someone....
×
×
  • Create New...