|
They are definitely browser-based, until now there haven't been a platform to write cross-browser extensions.
Chrome and Opera share the same API, so you may use it, Firefox is a bit of different beast and that is when you might require some third-party tooling, which is not guaranteed to work with everything but will give a good way to start.
Kango cross-browser extension framework
Cross-Browser Extensions API? - Stack Overflow
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
Alright, thank you 
|
|
|
|
|
When you're looking at implementing a feature that has a complex central element (like BLOB), you can always check: Can I use... Support tables for HTML5, CSS3, etc
Most features do have shims for cross-browser support, but I tend to avoid those for overhead reasons. Better to make it play nice at a basic level, IMO.
"There are three kinds of lies: lies, damned lies and statistics."
- Benjamin Disraeli
|
|
|
|
|
I'm not a web developer. I have a very small amount of experience with MVC, yet I need to display the results of a query as a table in a page. I really have no idea how to proceed.
I'm doing an app that will have a small client side class that will submit data to a SQL server. I then need a page that displays the results of a query in a table.
The data model is in a shared project.
Can someone please point me in the right direction?
Thanks
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.
|
|
|
|
|
Does it have to be MVC? Web Forms and a simple GridView would be very easy to throw together.
There are two kinds of people in the world: those who can extrapolate from incomplete data.
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
RyanDev wrote: Does it have to be MVC?
No
RyanDev wrote: Web Forms and a simple GridView would be very easy to throw together
Any examples/tutorials that you know of to get me started?
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.
|
|
|
|
|
Hi,
1) I want to integrate Apple Pay on my website (so it's a Apple Pay - Web Integration), using the Braintree payment provider, JS as a client side language and Java as a server side language.
I'm having difficulties creating a proper sandbox environment for my Apple Pay implementation Testing.
Followed the steps from the Apple docs but it seems they are not accurate :
-says to create a Merchant Id, one for sandbox and one for production (as far as I can see, at the moment of creating those 2, there's no way of telling that you want to use one for the development environment and the other for the production)
- after that, says to create a Certificate using the Merchant ID created before; if I sign in to my Apple Developer Account, I can see the 'Development' and the 'Production' sections, but when I try to create a sandbox/development certificate, Apple Pay is not available for it, only in the production section (see below images).
Is there a way to create a Sandbox / Development Apple Pay certificate, or are there any other ways to properly test the Apple Pay integration ?
2) I tried creating a sandbox user tester account from iTunes, but when I tried to login on Itunes on my Ipad which I'm using for testing, I get the following error: 'Itunes account creation not allowed. This Apple ID cannot be used with the Itunes Store at this time. Please try again later.' (I already verified my Apple ID and followed all the steps to activate the account, but without any success)
3) As I was trying to create Sandbox Apple Pay certificates I mistakenly created 2 for the production environment. Could I revoke them without any problems and create another ones ?
If you integrated Apple Pay on the WEB, I would highly appreciate any help, since I'm having such difficulty in simply setting up my testing environment.
Images - links:
https://i.stack.imgur.com/7aGer.png
https://i.stack.imgur.com/WEYPR.png
Thanks Smile | 
|
|
|
|
|
Hi, I am basically a software developer looking for a Laravel based admin template with all the Advanced functionalities which can save my tons of hours of production so that i can develop my projects at a quicker pace,can anyone please suggest me regarding this?
|
|
|
|
|
I have just discovered W3.CSS[^], an equivalent framework to Bootstrap and looking at it, it seems to give me all the function of Bootstrap, but, at first glance, seems easier to tailor.
Has anyone looked at/used W3.CSS? If so, what did you think of it as regards Bootstrap?
|
|
|
|
|
That is just a combination of Bootstrap and Angular, pretty much I do like it, but since Bootstrap is more widely used + has a community, I'll stick with it.
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
Hi,
I am developing a mobile app and need to have PHP webservice for it to return JSON result.
If I am going to make the service and copy it on my host then connect to it then I will achieve what I want but how about the security of the webservice? and how can I make sure it won't be indexed in Google and also how can I make sure no one will be able to access it with a kind of security?
Kindly advise...
Thanks,
Jassim
Technology News @ www.JassimRahma.com
modified 14-Jul-17 15:54pm.
|
|
|
|
|
Hello all,
Im new to programming/coding and wanted to know do you all use notepad or some fancy rendering software that makes things easier? I've seen something on the net once that helped point out errors, for instance if you forget to close a tag.
thank you
|
|
|
|
|
We (mostly) do not use notepad, we use one of the many IDE (Integrated Development Environment) packages that are available: Visual Studio, Visual Studio Code, eclipse, Netbeans etc. Google will lead you to their home pages, so you can decide which one suits your requirements.
|
|
|
|
|
Great thank you. I tried google earlier but searching kept bringing tutorials. I found program called bracket trying now ^^
thank you
|
|
|
|
|
|
Those products are called IDEs (as Richard pointed), we do not use notepads, as they require us to shift our attention from editor to compiler, to runtime, to some terminal or program to show results. Use Visual Studio Code[^], it is above than Notepad, less powerful than Visual Studio, but supports web development of any platform.
For an in-depth, see Language Support in Visual Studio Code[^].
If you need something big, use Visual Studio Community.
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
|
I'm having trouble getting my ddl to show items from my stored procedure.
Here's the View
@(Html.Kendo().DropDownList()
.Name("ddDrivers")
.DataTextField("DriverID")
.DataValueField("Arm_ID")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("DriverInfo", "Agent");
});
})
) <br />
Controller: "AgentController"
public ActionResult DriverInfo([DataSourceRequest]DataSourceRequest request)
{
using (var CB = new CBEntities())
{
var result = CB.GetDriverInfo("U00250").ToList();
return Json(result.ToDataSourceResult(request), JsonRequestBehavior.AllowGet);
}
}
What am I doing wrong here? Thanks!
|
|
|
|
|
And the problem is? How do we know what went wrong...
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
The data wasn't showing in the dropdown! I already stated the problem!!
But, never mind because I fixed it on my own by manually building a list before sending it to the view;
public JsonResult GetDriverList()
{
var x = (from n in cb.GetDriverInfomation("U00250") select n);
List<string> items = new List<string>();
foreach (var item in x)
{
items.Add(item.ToString());
}
return Json(items.ToList(), JsonRequestBehavior.AllowGet);
}
modified 20-Dec-16 10:29am.
|
|
|
|
|
Given any arbitrary image, I want to crop from the center of the image and display it ,when page is responsive,using media queries.
|
|
|
|
|
Instead of that, how about you just assign that as a background image to your HTML control and let browser do the hard part for you?
background-image:url('../images/bg.png');
background-repeat:no-repeat;
background-size:contain;
background-position:center;
More here, Responsive css background images - Stack Overflow[^]
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~
|
|
|
|
|
Hi, I am pretty new in php , how can I send email with php?
|
|
|
|
|
Just type your question into Google.
|
|
|
|
|
Yes very simple in PHP, just read the doc :
The mail function returns boolean.
bool mail ( string $to , string $subject , string $message [, string $additional_headers [, string $additional_parameters ]] )
|
|
|
|