I'm new here so sorry if I'm missing something...
I'd like some help concerning SAS/AF, I'm looking to create a dynamic calendar, which means days are automatically displayed when the user goes through the years/months.
I created a dataset with the info I need to be displayed in the calendar :
%let fromDate = 31DEC2005;
%let toDate = 31DEC2016;
data calendar;
do date = "&fromDate"d to "&toDate"d;
DayOfWeek = put(date, downame3.);
Day = put(date, day.);
Month=month(date);
Year=year(date);
output;
end;
format
date date9.
;
run;
What I'd like to do is create a frame that looks like the Windows calendar we have for example, but I don't know what component is the best to use here : Push Button or Container Box ?
I created a class via SCL code called Calendar, though I'm new to SAS too so I'm sorry I don't know where to start from with the class... I want to dynamically set the days (1-31) in the boxes (coming from the data set "calendar" above), when the user goes through years/months.
The user goes through years/months by clicking on a "scroll control" then displays the days afterwards.
Thank you for helping !
EDIT : I've made the frame using some properties, here's a look :
calendar
So what I still need to do is put the days (1-31) in the Push Buttons (I guess it's possible to do that with SCL via the .label). There's one problem though with the Spin Boxes, the data is set manually by me, in the Combo Boxes, it's set from the Data set I've created, is there a way to keep the Spin Boxes and link it to the Data Set instead ? like a list or something ? Enlighten me please u_u
Related
Dears
good day
I need your help for the following case:
The activity nature of the client is very dynamic
Need to have a dynamic form (he wants to create many form every day by himself in runtime). And add some components in the runtime.
He doesn't have a standard form so he need every day to create new form
For example he can make today a form with group of input text and group of check box and table and tomorrow he need to make a new form with input text and radio and table also etc..,.
In addition he needs to achieve and save it into database to use it and retrieve it later , and he wants to save every form with its UI contents which he created in runtime to be able to view it later on the jsf page.
So he want to save created form contains data into database
And also he wants to arrange the component on the page by his own way
And I putted this case in OTN :
https://community.oracle.com/message/14356236#14356236
How could I do it?
Regards
You can find a series of blog posts of Andrejus, right here:
http://andrejusb.blogspot.co.uk/2015/09/adf-12c-dynamic-forms-with-adf-bc-ui.html
I am using Arshaw full calendar[Angular bootstrap] in my project, but after implementing it, Whenever I go to the day view and click on the time span say 12.00am, day click event gets fired and if I extract date from the view object I get the same date but the timing shows 05.30.0, That means there is difference of 5.30 hours... Why is this happening, I am using the latest version of master calendar. I am sharing the snapshot of the same. Please help, Thank you..!!!
I've been wracking my brains on this simple macro for days and troweled almost every site and forum for an answer, to no avail. Thus, I come to the gurus of stackOverflow for my salvation:
I'm working in Access 2010 and have a database of events that are coming up. Right now the database opens to a form wherein any user may view the entered events and edit them if there's an error. Likewise, there's a report that pulls it's list from the form that everyone's working on.
What I'd like to do (for ease of use) is have a text field and a button. The field would be for date-input (i.e. 10/20/2015) and when pushed, the button would filter the list of events to show only things on or after the typed date. Likewise, I'm hoping to make another filter for the report that will display items only btw. certain dates (but I'm really just working on the first item).
The concept would look like this:
| [ Text Field | [BUTTON]
Event 1 ...................... Date.........
Event 2 ...................... Date.....
....
..
.
Note: This is a database for people who know NOTHING about Access, so I'm trying to spoon-feed the stuff they need to them.
I really appreciate the help, folks.
hope someone can help me with this question.
I have an entity which contains a start time (let's say 15 o'clock) and an end time (let's say 16
o'clock). It also contains the date (let's say today^^).
So my query returns all data of today, but I only want to show the data between 15 and 16 o'clock.
Do I need to set a $timeout for each object? Or is it possible to automatically call a method called shouldShowData which used in ng-show?
Basically I have a list of objects and want to show single object just on a specific time of the day.
EDIT
Imagine that the screen is shown in a public place and displays different news at different time (morning news, evening news, ...) and should automatically update when the specific news should be displayed based on it's start and end time. It can't be updated manually with a refresh button for example.
Great to here from you :)
I have found similar problem and solution for it here
All you need is to wrap this into $filter and use on ng-repeat.
I am using a calendar in my project and after using the information
i want to set it back to default and i am having a trouble with it
Edit :
sorry for any misunderstanding, lets say the user changed the calendar,
how can i set it to the way it was before the user changed it (no marks of dates and back to the previous way it was)
okey i found it:
calendar.SelectedDate = null;
calendar.DisplayDate = DateTime.Today;