Have a link in custom crm report - sdk

Is it possible to have a link in a custom crm report?
In the picture, How can I make patientId as link that when it is clicked, the patient form opens?

Turn those labels into hyperlinks, seems to be plenty of questions on this already.
Use this information to set the correct URL to open the patient form
Open forms, views, dialogs and reports with a URL, for example:
http://myorg.crm.dynamics.com/main.aspx?etn=[your entity name goes here]&pagetype=entityrecord&id=[record Id goes here]

Related

How to hide URL in address bar?

I have made a website to display dataset for a publication that I am need to submit to a venue that needs blind review. My server is from the university so the link contains my college name and my name. How do I create a link that takes the viewver to my website without revealing my identity displayed by the URL?
My current URL looks like univ.edu/myname/Dataset.html. I do not want it to show univ.edu and myname. Anything else is ok.

sending parameters to another website

I use Asp.Net Mvc4. I need to transfer some data to another web site.I want to explain:
There is a site that people query their salaries on this site. For exmaple www.xsalary.com. People enter this site. They enter their identity number, year, month etc. infos to textboxes into this site. Then they click submit button and, the site shows their salary infos to them.
I have a personnel web application. I have personel's identity number etc. I show personnel salaries in a page. In this page, there is button.When someone click this button, application open the site that I explain above, and textboxes in this site is filled with my sending parameters identity number, year etc. infos.
I hope I can explain what I need. How can I do this in Mvc ? Is it possible ?
Thank in advance.
My idea would be. Put a #html.TextareaFor element on your main site. Connect this element with your Model. If the user push the submit button, you send the information from your textarea to your controller where you can query the Information from your database. Now you can put the salary information into another view.
Let the controller call the result view and show the user his salary information.

Rails Ajax Or Javascript?

I was wondering which way would be the best for my following problem. and maybe sample on how to do it also
I have the following models: customer, music, books.
What I would like to do is when a customer wants to go into the edit page then automatically customer general information such as name, password show up! But on an other tab by pressing music which his another model then music information comes up in the same. Sorta like facebook and twitter edit page do it.
Now each of the form are rendered by the following code line at the moment
<%= render 'general'%>
but how do i include them in the link and should i just use javascript and toggle them or use ajax ??
Thanks
Well, this has little to do with Ajax, since all information you need aparently would already been loaded by you main customer object.
What i understand you want is something like the tabs javascript plugin of twitter bootstrap: http://twitter.github.com/bootstrap/javascript.html#tabs
You put the different content (music/books/etc) in different divs and when the tab is clicked, the content changes and the user gets a better experience.
Take a look at the link, it is super easy to set up this plugin on your project.

Concept for a grails app

I am working on a Grails project, its an accounting project. We have multiple clients and they can have multiple types of accounts. I have to create the 'create' page for client, there should be a way to add multiple types of account to the client.
So I was thinking of making a drop-down list with account types and few text boxes to enter account name and other info about account. Also, as a client can have multiple accounts, so I want to create a 'add' button, when clicked it would display a new row to add a new client. I have done this kind of UI before using javascript but in this case, as there is a drop-down list and other components, I think it would be very hard and may not work.
I was thinking of creating a partial view which would render each time user clicked the 'add' button with additional row, problem with this would be during validation errors, edit page and i would also have to pass all values each time user clicks 'add' button.
Is there any other for doing this?
For the template approach you must use ajax if you don't want to carry on the params that the user has already set.
It is possible to make new drop-down lists appear (or any group of elements inside a <div>) when a user clicks a button, since Grails already comes with jQuery you might want to take a look at the .clone() method.
The problem with the two listed approeaches is that it will be possible to have duplicates.
Now, another option is to use checkboxes, so you can check just the type of account you want.
But to be honest it does seems a bit odd or even inapropiate to let the user choose the type of account he wants with such freedom.

remove hyperlink on a username in discussion boards list page

i am having a discussion board. and when we access that discussion board, the default view is flat view. in that view there will be "Posted By" field. On clicking the image or username on that field, sp will redirects to the corresponding user page(about details). in my current project i want to disable all this posted by field. just i want to show picture of the user and username, no hyperlink.
how to do this? its very urgent
Removing the hyper link would not be possible unless until you create the custom webpart for the same; work around could be to disable the hyper links by changing their href by # using JavaScript which would be called below the web part in HTML

Resources