NetTalk Central

Author Topic: Planner (netwebyear) questions update form does not show  (Read 4277 times)

sabra

  • Newbie
  • *
  • Posts: 28
    • View Profile
    • Email
Planner (netwebyear) questions update form does not show
« on: April 06, 2011, 09:56:43 PM »
Hi Bruce,

I strongled today with the planner. The example (web12) runs fine but in my own app the update form did not show up.
Because off a bug in former versions of NT5 , i disabled the popup options in the global extension. I restored it to default and that solved my problem. I have to test the rest of the app I all runs smoothly.

I have these questions (includes questions asked earlier today):

1.      I also want to show a table of unplanned tasks, but there is no place to enter a control (browseunplanned) . I want to create a table below the planner browse.
2.      Set width of the planner browse to full or qty pics.
3.      How to set a bold font in the description field (cell )
4.      Set the time scope e.g. from 6:00 am to 6 pm . The cell width has to be calculated against the time scope (so the cell gets wider). I now have to set a huge pix for a readable cell content.
5.      I also want a date picker on the screen. The option ‘start with’ is now set to today()  so you are limited to the number of days ahead to plan.

Best regards,
Walter / The Netherlands

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11244
    • View Profile
Re: Planner (netwebyear) questions update form does not show
« Reply #1 on: April 06, 2011, 10:22:07 PM »
Hi Walter,

>> 1.      I also want to show a table of unplanned tasks, but there is no place to enter a control (browseunplanned) . I want to create a table below the planner browse.

start with a NetWebForm.
Onto this you can embed any controls you like, including browses (as you know) and netwebyears (calendars).

>> 2.      Set width of the planner browse to full or qty pics.

css probably... but I'm nto 100% sure I know what you mean, so perhaps a screen-shot will help.

>> 3.      How to set a bold font in the description field (cell )

css.

>> 4.      Set the time scope e.g. from 6:00 am to 6 pm . The cell width has to be calculated against the time scope (so the cell gets wider). I now have to set a huge pix for a readable cell content.

I don't think you can do this yet - I've put it on the list for future ideas.

>> 5.      I also want a date picker on the screen. The option ‘start with’ is now set to today()  so you are limited to the number of days ahead to plan.

see (1) above.

cheers
Bruce

sabra

  • Newbie
  • *
  • Posts: 28
    • View Profile
    • Email
Re: Planner (netwebyear) questions update form does not show
« Reply #2 on: April 06, 2011, 11:49:40 PM »
Hi Bruce,

Please find the attached screendumps . The planner opens 'small ', i want this to be big esp because the planner does not refresh after inserting an appointment (i press F5 and have to drag
the browse to make it wide again).

Cheers,

walter

[attachment deleted by admin]

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11244
    • View Profile
Re: Planner (netwebyear) questions update form does not show
« Reply #3 on: April 07, 2011, 12:30:48 AM »
in your custom css file put;

.cal-scroll{
width: 400px;
}

well, replace 400 with something else. 400 is the default setting.

cheers
Bruce

sabra

  • Newbie
  • *
  • Posts: 28
    • View Profile
    • Email
Re: Planner (netwebyear) questions update form does not show
« Reply #4 on: April 07, 2011, 01:06:10 AM »
Ok done, but where do i have to put 'cal-scroll' in my procedure? I have choosen for set BIG and added 'cal-scroll' in  "month' but no luck.
Walter

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11244
    • View Profile
Re: Planner (netwebyear) questions update form does not show
« Reply #5 on: April 07, 2011, 01:13:21 AM »
it's already using .cal-scroll, so you don't need to change the app.

If your style is not being applied, then make sure you're doing the whole styles thing correctly...
(ie re-running gzipall, pressing F5 in your browser and so on)

cheers
Bruce

sabra

  • Newbie
  • *
  • Posts: 28
    • View Profile
    • Email
Re: Planner (netwebyear) questions update form does not show
« Reply #6 on: April 12, 2011, 01:31:24 PM »
Hi all,

Just to complete this story: i created a custom.css , copied the cal-scroll code in and saved the file. after that i copied the gzipall.bat file from \clarion6\libsrc\netweb folder to my production folder and added this line of code to the gzipall.bat

type web\styles\custom.css        >> web\styles\all.css

Finally i added 'custom.css' in the styles\files tab of the nettalk object in the webserver procedure and ticked the 'is included in the all.css'.

After that the planner opened 'wide' (three days) . Don't forget to refresh your browser.
Walter