I am using Kentico 10.0
I am using an Event Calendar. I do customize the existing calendar and all worked well.
Now my requirement is to access "calItems_SelectionChanged" event, just as normal asp.net calendar, so that i can fill data to repeater according to the date. Since we are using transformations, i am not able to get the click event.
Nb. i am not using booking events, but am getting all the data plotting. please advice
Your best bet is to clone that webpart and create your own custom events within that webpart. This article will help you with cloning and customizing a new webpart. Make necessary name changes as needed.
Open the Web parts application.
Select the Forms -> On-line form web part in the tree.
Click Clone web part () above the tree and enter the following values:
New object display name: Form with custom email
New object code name: FormWithEmail
Clone web part to category: Forms
Clone web part files: yes (checked)
Cloned web part file name: BizForms/formwithemail.ascx
Click Clone.
In your visual studio project, modify your new file and add your new code
Related
Anyone having idea about how to create Custom ListView on Standard Sobject, that can have both standard as well as custom fields.
Please share your knowledge.
Cheers!
Navigate to the tab for the custom object in you are in Classic salesforce click the "Create New View" link next to the list view droplist if in Lightning click the Cog to the right top of the UI then click the "New" menu option. Select the Standard and Custom fields that you want to appear in the list view, I believe up to 10 fields, and the criteria for the view and who can see the listview, then save.
You can create this via code using the metadata API. You would have to download one of the wsdl files, use the wsld to Apex generator to create a wrapper for it and use that to create a soap envelope with the request. It might be easier to use https://github.com/financialforcedev/apex-mdapi where he did the work already, see this posth
I am trying to run this form in the browser, but I keep getting this message not sure how to fix it so can you help me please.
"Ui Designer form type is selected and no target form is defined for overview page mapping. an autogenerated form will be used in the development environment ONLY"
here is a screen shoot of the message.
/Users/user/Desktop/Screen Shot 2017-08-03 at 5.31.44 pm.png
/Users/user/Desktop/Screen Shot 2017-08-03 at 6.34.41 pm.png
Unfortunatly I cant see any pics from your problem and I just think your problem might be with deploying your process.
As the error mentions the form you see when you Run the process from studio is an autogenerated form for testing the process in development mode(Obvious)
So if you want to deploy your process on a deployed Bonita BPM engin you have to create all those forms.
Select the Task (containing the contract cause forms are only generated for contracts) --> Under details panel ---> Execution Tab ---> Form :
Here you have 4 options and as it seems your new to Bonita so I suggest that you go with the UI Designer cause it will generate a form for deploying , simply choose UI Designer then from the right side of Target Form text area click the pencil icon (Edit) , it will create a new form for your contract and opens UI Designer to modify it.
If you just want to see how your process works in deployment environment and don't want to spend time on designing the UI just change the form name from "newForm" to what you want (All the forms created by UI Designer have the "newForm" name before you change it and it may cause problems if you don't modify the name ) and save it.
Build your project and deploy it.
Seeking an example RedMine Plugin or tutorial to add a spinner control to the RedMine ISSUES UI page.
This has two parts: (1) adding the spinner control to the RedMine page UI and (2) adding a new column in the RedMine DB to store the spinner's input value.
http://www.redmine.org/ Redmine is a flexible project management web application. Written using the Ruby on Rails framework, it is cross-platform and cross-database. Redmine is open source and released under the terms of the GNU General Public License v2 (GPL).
I'm assuming you want something like this.
In your plugin, simply create a new custom field format (inherit from IntFormat which is defined in lib/redmine/field_format.rb) and override the edit_tag method to render your control.
Then in Redmine, with your plugin installed, you can just create a custom issue field using the newly defined format. This field will then be rendered the way you want. There is no need to patch Redmine's Views or add a new column to the database for this.
the forms in my app display themself based on metadata.
In design mode the user should be able to change the form (metadata) by dragging all form elements (text, input ...) somewhere in the browsers window. I want to save the new metadata to display the changed form.
I wonder, if there is allready any solution or a tool.
Thanks in advance
Chris
Check this link - http://ngmodules.org/ which contains a detailed list of plugins developed for angularjs. I have found many useful plugins here.
My problem is this one, I am using Sharepoint 2010, I have a form created in sharepoint designer 2010, above that form I have a silverlight webpart. Now I need to be able to access information from the silverlight webpart when I click on it and insert that information in the form below it.
Does anyone have any insight on how to do that?
Thank you in advance.
Chris
You can interoperate between javascript, the DOM, and Silverlight. As a result you can do any of the following.
1) In the Silverlight code, programmatically fill in the form using HtmlPage and other items in the System.Windows.Browser namespace.
2) Have your Silverlight app pass the data to javscript function that then fills in the form
3) If your Silverlight app is not initiating the action, you can have a javascript function that calls a function in your Sillverlight app. This article explains that http://blogs.silverlight.net/blogs/msnow/archive/2008/07/08/tip-of-the-day-15-communicating-between-javascript-amp-silverlight.aspx
4) If you are wanting to rely on the Sharepoint WebPart communication channels instead of trying to access the webparts through the DOM, you can also have Silverlight fill a hidden field and then call the javascript postback function. Your code behind on your webpart can then pick up the hidden field data and send the information though the webpart communication channls.