I believe that the entry type you want to use is called @incollection.
Back-filling information for the author's and editors' first names as well as the chapter and pages fields, the full entry could be as follows:
@incollection{grandstrand:2004,
author = "Ove Grandstrand",
title = "Innovation and Intellectual Property Rights",
editor = "Jan Fagerberg and David C. Mowery and Richard R. Nelson",
booktitle = "The Oxford Handbook of Innovation",
publisher = "Oxford University Press",
address = "Oxford",
year = 2004,
pages = "266-290",
chapter = 10,
}
Using the plain bibliography style would generate the following typeset entry:

Addendum: If you use the chicago bibliography style, you'll get:

Here's the code used to generate the two preceding screenshots:
\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@incollection{grandstrand:2004,
author = "Ove Grandstrand",
title = "Innovation and Intellectual Property Rights",
editor = "Jan Fagerberg and David C. Mowery and Richard R. Nelson",
booktitle = "The Oxford Handbook of Innovation",
publisher = "Oxford University Press",
address = "Oxford",
year = 2004,
pages = "266-290",
chapter = 10,
}
\end{filecontents}
\documentclass{article}
\bibliographystyle{plain} % or: "chicago"
\usepackage{natbib} % a citation management package
\begin{document}
\nocite{*}
\bibliography{mybib}
\end{document}
biblatex-chicago, and following the most current edition of the manual (16th). The format shown is not current Chicago style. – musarithmia Sep 09 '14 at 13:32--? – tvk Nov 28 '20 at 18:53-character if it occurs in the pagesfield, i.e., changes it to an en-dash. Do check both screenshots I posted: sure enough, they feature an en-dash, not a simple dash, between the page numbers. In shortpages = "266-290",andpages = "266--290",` produce the same output with most bib styles I'm familiar with. – Mico Nov 28 '20 at 19:42